[This topic is pre-release documentation and
is subject to change in future releases. Blank topics are included
as placeholders.]Initializes a new
Pair
object with two types to combine into one type.
Namespace:
Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.Core (in
microsoft.enterprisemanagement.core.dll)
Usage
Visual Basic |
Dim first As T
Dim second As V
Dim instance As New Pair(Of T, V)(first, second)
|
Syntax
Visual Basic |
Public Sub New ( _
first As T, _
second As V _
)
|
C# |
public Pair (
T first,
V second
)
|
C++ |
public:
Pair (
T first,
V second
)
|
J# |
public Pair (
T first,
V second
)
|
JScript |
public function Pair (
first : T,
second : V
)
|
Parameters
- first
-
The first type.
- second
-
The second type.
Platforms
Development Platforms
Windows Server 2008, Windows Vista, Windows Server 2003, and
Windows XP
Target Platforms
Windows Server 2008,Windows Server 2003
See Also